home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / socketx / UDPPEER.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1998-09-02  |  1.5 KB  |  45 lines

  1. VERSION 5.00
  2. Begin VB.Form UDPPeer 
  3.    Caption         =   "Datagram Send/Receive"
  4.    ClientHeight    =   1260
  5.    ClientLeft      =   195
  6.    ClientTop       =   1050
  7.    ClientWidth     =   8535
  8.    LinkTopic       =   "Form1"
  9.    PaletteMode     =   1  'UseZOrder
  10.    ScaleHeight     =   1260
  11.    ScaleWidth      =   8535
  12.    Begin VB.Label Label1 
  13.       Alignment       =   2  'Center
  14.       Caption         =   "This sample shows how to send and receive datagrams. Please wait while sample forms initialize and load."
  15.       BeginProperty Font 
  16.          Name            =   "MS Sans Serif"
  17.          Size            =   12
  18.          Charset         =   0
  19.          Weight          =   400
  20.          Underline       =   0   'False
  21.          Italic          =   0   'False
  22.          Strikethrough   =   0   'False
  23.       EndProperty
  24.       Height          =   975
  25.       Left            =   240
  26.       TabIndex        =   0
  27.       Top             =   120
  28.       Width           =   8055
  29.    End
  30. Attribute VB_Name = "UDPPeer"
  31. Attribute VB_GlobalNameSpace = False
  32. Attribute VB_Creatable = False
  33. Attribute VB_PredeclaredId = True
  34. Attribute VB_Exposed = False
  35. Private Sub Form_Load()
  36.     Me.Show
  37.     DoEvents
  38.     UDPPeerA.Show
  39.     UDPPeerB.Show
  40.     Label1.Caption = "This sample shows how to send and receive datagrams.  Enter text in the textbox of one window and it will show up in the transcript list of the other window."
  41. End Sub
  42. Private Sub Form_Unload(Cancel As Integer)
  43.    End
  44. End Sub
  45.